<# It is recommended to test the script on a local machine for its purpose and effects. ManageEngine Desktop Central will not be responsible for any damage/loss to the data/setup based on the behavior of the script. Description: Script to check bluetooth state On/Off Remarks: 'Enable Logging' option must be choosen to view the result Configuration Type - COMPUTER =========================================================================================================================== #> $ip = ipconfig write-host $ip if ($ip -like "*Bluetooth*") { write-host "Blutooth is ON" } else { Write-host "Bluetooth is OFF" }